home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-05 / 1119.zip / 1119.TXT next >
Text File  |  1993-03-08  |  4KB  |  125 lines

  1.                            FYI
  2.  
  3. (Note: The origin of this information may be internal or external
  4. to Novell.  Novell makes every effort within its means to verify
  5. this information.  However, the information provided in this
  6. document is FOR YOUR INFORMATION only.  Novell makes no explicit
  7. or implied claims to the validity of this information.)
  8.  
  9.           TITLE: DR DOS 6 SAMPLE CONFIGURATIONS FOR 8088 & 8086
  10.                   COMPUTERS
  11.    DOCUMENT ID#: FYI-M-1119
  12.            DATE: 02MAR93
  13.         PRODUCT: DR DOS
  14. PRODUCT VERSION: 6.0
  15.      SUPERSEDES: 
  16.         SYMPTOM: SAMPLE CONFIGURATION FILES FOR XT COMPATIBLES
  17.  
  18.   ISSUE/PROBLEM: Users are not sure on how to maximize DR DOS
  19. configurations for 8088 and 8086 computers. 
  20.  
  21.        SOLUTION: Here are some sample configuration files for XT
  22. compatible computers.  You don't have to use them exactly as
  23. written but they can be used to give you ideas on what can be
  24. done with DR DOS 6.0.  What configuration you use is dependent on
  25. the computer hardware and software.
  26.  
  27.      PC / XT COMPUTERS 640K (ONLY)
  28.  
  29. CONFIG.SYS
  30.  
  31. SHELL=C:\COMMAND.COM C:\ /P /E:256
  32. BREAK=ON 
  33. BUFFERS=20
  34. FILES=30
  35. FCBS=4,4
  36. FASTOPEN=256
  37. HISTORY=ON, 256, ON, OFF, OFF
  38. ?"Load Netware (Y/N)? " set lan=on
  39. ?"Enable DelWatch TSR (Y/N)? " set delw=on
  40.  
  41. AUTOEXEC.BAT
  42.  
  43. @ECHO OFF
  44. :DRDOSBEG
  45. PATH C:\;C:\DRDOS;C:\NETWARE
  46. VERIFY OFF
  47. PROMPT [DR DOS] $P$G
  48. if "%lan%"=="on" IPX
  49. if "%lan%"=="on" NETX
  50. if "%delw%"=="on" DELWATCH C: /F:200
  51. DISKMAP C:
  52.  
  53. These files will setup an XT-type computer to use the following
  54. DR DOS 6.0 features: The DELWATCH command is a 5k TSR loaded to keep track of deleted
  55. files. The options indicate that Drive C: will be watched and no
  56. more than 200 deletions will be tracked.
  57.  
  58. The DISKMAP command takes a snap-shot of Drive C:'s file
  59. allocation table. In case of serious disk or file corruption
  60. DISKMAP can aid in the recovery of missing or bad files. 
  61.  
  62. Depending on the use of this type of configuration, this PC/XT
  63. could be used for other "light-duty" services on networks, et
  64. cetera, and therefore, other drivers can be implemented which
  65. would take more conventional memory such as SuperStor'ing the
  66. hard-disk for additional document storage for a printer server.
  67. SuperStor would take about 50K of conventional memory to run, and
  68. could have a serious impact on the ability to run some DOS
  69. applications. The examples for SuperStor in this document are for
  70. drives other than C:. If C: is compressed SuperStor will create a
  71. DCONFIG.SYS file on the uncompressed side and will place the
  72. SuperStor driver there. Refer to Document 1200 for more
  73. information on SuperStor.
  74.  
  75.      PC / XT COMPUTERS 640K AND LIM 4.0 EXPANDED MEMORY 
  76.  
  77. CONFIG.SYS
  78.  
  79. SHELL=C:\COMMAND.COM C:\ /P /E:256
  80. BREAK=ON 
  81. BUFFERS=20
  82. FILES=30
  83. FCBS=4,4
  84. FASTOPEN=256
  85. HISTORY=ON, 256, ON, OFF, OFF
  86. DEVICE=C:\REMM.SYS
  87. ?"MemoryMAX w/no LIM (y/n)? "DEVICE=C:\DRDOS\HIDOS.SYS /C=EMSALL  
  88.       /B=AUTO
  89. ?"MemoryMAX w/ LIM (y/n)? "DEVICE=C:\DRDOS\HIDOS.SYS /C=EMSUMB    
  90.     /B=AUTO
  91. HIDOS=ON
  92. ?"Use the Compressed Disk (Y/N)? "DEVICE=C:\SSTORDRV.SYS
  93. ?"Enable DelWatch TSR (Y/N)? " set delw=on
  94. ?"Load Netware (Y/N)? " set lan=on
  95.  
  96. AUTOEXEC.BAT
  97.  
  98. @ECHO OFF
  99. :DRDOSBEG
  100. PATH C:\;C:\DRDOS;C:\NETWARE
  101. VERIFY OFF
  102. PROMPT [DR DOS] $P$G
  103. if "%lan%"=="on" IPX
  104. if "%lan%"=="on" NETX
  105. if "%delw%"=="on" DELWATCH C: /F:200
  106. DISKMAP C:
  107. :DRDOSEND
  108. An XT-type computer, with LIM 4.0 expanded memory, will take
  109. advantage of the following DR DOS 6.0 features:
  110.  
  111. First, the computer's expanded memory driver is loaded (named
  112. REMM.SYS in this example). The driver supplied with your computer
  113. will probably be named something different, however, specify the
  114. use of this driver in the same location. 
  115.  
  116. Second, the MemoryMAX driver HIDOS.SYS allows the operating
  117. system to relocate into Upper Memory via the /B=AUTO switch. The
  118. other switches, /CHIPSET=EMSALL or EMSUMB, allow either all the
  119. Upper Memory (128K) to be used for the operating system's purpose
  120. (but with no LIM support) or to allow an EMS page frame (LIM
  121. support) and an Upper Memory Block of 64K. The EMS memory manager
  122. and hardware must be LIM 4.0 compatible for this to work
  123. properly. 
  124.  
  125.